level api
Things You Need To Know When You Start Using Apache Spark – Fly Spaceships With Your Mind
Apache Spark Streaming – Every company produces several million pieces of data every day. Properly analyzed, this information can be used to derive valuable business strategies and increase productivity. Until now, this data was consumed and stored in a persistent. Even today, this is an important step in order to be able to perform analyses on historical data at a later date. Often, however, analysis results are desired in real time.
TensorFlow from Julia
Last time, I gave a quick introduction to the Julia programming language which has just reached the 1.0 release mark after ten years of development. Julia is touted as the next great thing for scientific computing, machine learning, data science and artificial intelligence. Its hope is to supplant Python which is currently the goto language in these fields. The goal is a more unified language, since it was developed well after Python and learned from a lot of its mistakes. It also claims to have the flexibility of Python but with the speed of a true compiled language like C. I saw that in the list of packages there was support for using Google's TensorFlow AI system natively from Julia so I thought I would give this a try.
TensorFlow is dead, long live TensorFlow!
If you're an AI enthusiast and you didn't see the big news this month, you might have just snoozed through an off-the-charts earthquake. Everything is about to change! Last year I wrote 9 Things You Need To Know About TensorFlow… but there's one thing you need to know above all others: TensorFlow 2.0 is here! The consequences of what just happened are going to have major ripple effects on every industry, just you wait. If you're a TF beginner in mid-2019, you're extra lucky because you picked the best possible time to enter AI (though you might want to start from scratch if your old tutorials have the word "session" in them).
TensorFlow is dead, long live TensorFlow!
If you're an AI enthusiast and you didn't see the big news this month, you might have just snoozed through an off-the-charts earthquake. Everything is about to change! Last year I wrote 9 Things You Need To Know About TensorFlow… but there's one thing you need to know above all others: TensorFlow 2.0 is here! It is out of beta and officially yours to enjoy as of September 30, 2019! The consequences of what just happened are going to have major ripple effects on every industry, just you wait.
Getting Started With TensorFlow TensorFlow
This guide gets you started programming in TensorFlow. Before using this guide, install TensorFlow. The lowest level API--TensorFlow Core-- provides you with complete programming control. We recommend TensorFlow Core for machine learning researchers and others who require fine levels of control over their models. The higher level APIs are built on top of TensorFlow Core.
TensorFlow 101
TensorFlow is an open source machine learning library developed at Google. TensorFlow uses data flow graphs for numerical computations. Nodes in the graph represent mathematical operations, while the graph edges represent the multidimensional data arrays (tensors) communicated between them. In this post we will learn very basics of TensorFlow and we will build a Logistic Regression model using TensorFlow. The lowest level API - TensorFlow Core, provides you with complete programming control.
Introduction to Scikit Flow - Yuan's Blog
In November, 2015, Google open-sourced its numerical computation library called TensorFlow using data flow graphs. Its flexible implementation and architecture enables you to focus on building the computation graph and deploy the model with little efforts on heterogeous platforms such as mobile devices, hundreds of machines, or thousands of computational devices. TensorFlow is generally very straightforward to use in a sense that most of the researchers in the research area without experience of using this library could understand what's happening behind the code blocks. TensorFlow provides a good backbone for building different shapes of machine learning applications. However, there's a large number of potential users, including some researchers, data scientists, and students who may be familiar with many data science concepts/algorithms already but who never get involved in deep learning research/applications, may found it really hard to start hacking.